home *** CD-ROM | disk | FTP | other *** search
- /* MainWindow.h -- window class */
- /* Created 01/01/95 12:01 PM by AppMaker */
-
- #pragma once
-
- #include "zMainWindow.h"
- #include <CAMArrayPane.h>
-
- /*----------*/
- class CReminders : public CAMArrayPane {
- public:
- void IViewTemp (CView *anEnclosure,
- CBureaucrat *aSupervisor,
- Ptr viewData); // is override
- void GetCellText (Cell aCell,
- short availableWidth,
- StringPtr itsText); // is override
- }; /* CReminders */
-
- /*----------*/
- class CMainWindow : public ZMainWindow {
- public:
- virtual void IMainWindow (CDirector *aSupervisor,
- CAMReminderData *theData);
- void UpdateMenus (void); // is override
- void DoCommand (long theCommand); // is override
-
- protected:
- virtual void DoAddReminder (void);
- virtual void DoEditReminder (void);
- virtual void DoDeleteReminder (void);
-
- protected:
- void ProviderChanged (CCollaborator *aProvider,
- long reason,
- void* info); // is override
- CAMArrayPane *NewReminders (void); // is override
-
- protected:
- CAMReminderData *itsData;
-
- // your application-specific data members:
-
- }; /* CMainWindow */
-